home *** CD-ROM | disk | FTP | other *** search
/ Reverse Code Engineering RCE CD +sandman 2000 / ReverseCodeEngineeringRceCdsandman2000.iso / RCE / Tools / Win95 Secrets / SETUP.Z / INTRCPT2.H < prev    next >
Encoding:
C/C++ Source or Header  |  1995-07-19  |  676 b   |  26 lines

  1. //==================================
  2. // APISPY32 - Matt Pietrek 1995
  3. // FILE: INTRCPT2.H
  4. //==================================
  5.  
  6. #pragma pack(1)
  7.  
  8. typedef struct
  9. {
  10.     PVOID   RealProcAddress;
  11.     BYTE    instr_pushad;
  12.     DWORD   instr_lea_eax_esp_plus_32;
  13.     BYTE    instr_push_eax;
  14.     BYTE    instr_push_offset_params;
  15.     DWORD   offset_params;
  16.     BYTE    instr_push_offset_funcName;
  17.     DWORD   offset_funcName;
  18.     BYTE    instr_call_LogFunction;
  19.     DWORD   offset_LogFunction;
  20.     BYTE    instr_popad;
  21.     WORD    instr_jmp_dword_ptr_RealProcAddress;
  22.     DWORD   offset_dword_ptr_RealProcAddrss;
  23. } APIFunction, *PAPIFunction;
  24.  
  25. #pragma pack ()
  26.